home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / uxterm < prev    next >
Text File  |  2006-04-25  |  2KB  |  83 lines

  1. #!/bin/sh
  2. # $XTermId: uxterm,v 1.20 2005/08/05 01:25:40 tom Exp $
  3. # $XFree86: xc/programs/xterm/uxterm,v 1.11 2005/08/05 01:25:40 dickey Exp $
  4. # wrapper script to setup xterm with UTF-8 locale
  5.  
  6. program=xterm
  7.  
  8. # Check if there is a workable locale program.  If there is not, we will read
  9. # something via the standard error.  Ignore whatever is written to the
  10. # standard output.
  11. locale=`sh -c "LC_ALL=C LC_CTYPE=C LANG=C locale >/dev/null" 2>&1`
  12. found=no
  13.  
  14. # Check for -version and -help options, to provide a simple return without
  15. # requiring the program to create a window:
  16. if test $# = 1
  17. then
  18.     case $1 in
  19.     -v|-ver*|-h|-he*)
  20.         $program "$@"
  21.         exit $?
  22.         ;;
  23.     esac
  24. fi
  25.  
  26. # Check environment variables that xterm does, in the same order:
  27. for name in LC_ALL LC_CTYPE LANG
  28. do
  29.     eval 'value=$'$name
  30.     if test -n "$value" ; then
  31.         case $value in
  32.         *.utf8|*.UTF8|*.utf-8|*.UTF-8)
  33.             found=yes
  34.             ;;
  35.         *.utf8@*|*.UTF8@*|*.utf-8@*|*.UTF-8@*)
  36.             found=yes
  37.             ;;
  38.         C|POSIX)
  39.             # Yes, I know this is not the same - but why are you
  40.             # here then?
  41.             value=en_US
  42.             ;;
  43.         esac
  44.         break
  45.     fi
  46. done
  47.  
  48. # If we didn't find one that used UTF-8, modify the safest one.  Not everyone
  49. # has a UTF-8 locale installed (and there appears to be no trivial/portable way
  50. # to determine whether it is, from a shell script).  We could check if the
  51. # user's shell does not reset unknown locale specifiers, but not all shells do.
  52. if test $found != yes ; then
  53.     if test -n "$value" ; then
  54.         value=`echo ${value} |sed -e 's/[.@].*//'`.UTF-8
  55.     else
  56.         name="LC_CTYPE"
  57.         value="en_US.UTF-8"
  58.     fi
  59.     eval save=\$${name}
  60.     eval ${name}=${value}
  61.     eval export ${name}
  62.     if test -z "$locale" ; then
  63.         # The 'locale' program tries to do a sanity check.
  64.         check=`sh -c "locale >/dev/null" 2>&1`
  65.         if test -n "$check" ; then
  66.             eval ${name}=${save}
  67.             eval export ${name}
  68.  
  69.             echo "uxterm tried to use locale $value by setting \$$name" >&2
  70.             xmessage -file - <<EOF
  71. uxterm tried unsuccessfully to use locale $value
  72. by setting \$$name to "${value}".
  73. EOF
  74.             exit 1
  75.         fi
  76.     fi
  77. fi
  78.  
  79. # for testing:
  80. #test -f ./xterm && program=./xterm
  81.  
  82. exec $program -class UXTerm -title 'uxterm' -u8 "$@"
  83.